home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-02-20 | 361 b | 14 lines | [TEXT/MSCT] |
- //
- // Show Version.m1s
- //
- // Show the type and version of a document. Also works with application files
- //
- print "File Name : " + it.name
- print "File Type : " + it.class_name
- if not it.version is undefined then
- if it.version - 1.0 <> 0.0 then
- print "Version : " + it.version
- end if
- end if
- print "--------------------------------------"
-